home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_gnats.idb / usr / freeware / lib / gnats / contrib / delete-pr / README.z / README
Encoding:
Text File  |  1999-04-16  |  678 b   |  22 lines

  1. This program was donated by Kevin Hopkins <pkh@cs.nott.ac.uk>.  To use it,
  2. you should change Makefile.in like this:
  3.  
  4. * all-gnats and all-tools both reference delete-pr
  5. * add this rule:
  6.  
  7. --
  8. delete-pr: delete-pr.sh Makefile
  9.     sed -e 's,@GNATS_ROOT@,$(GNATS_ROOT),g' \
  10.         -e 's,@LIBDIR@,$(libdir),g' $(srcdir)/delete-pr.sh > tmp-delete-pr
  11.     mv tmp-delete-pr delete-pr
  12.     chmod a+x delete-pr
  13. --
  14.  
  15. * add it to the install target:
  16.      $(INSTALL_PROGRAM) delete-pr $(bindir)
  17.      chmod 755 $(bindir)/delete-pr
  18. * add it to the clean target
  19.  
  20. This will probably become a part of the main GNATS system in a future release.
  21. Until then, please send all bug reports relating to it directly to Kevin.
  22.